home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Diamond Collection / The Diamond Collection (Software Vault)(Digital Impact).ISO / cdr25 / quiz224.zip / QUIZ1.BAT < prev    next >
DOS Batch File  |  1995-01-13  |  616b  |  19 lines

  1. echo off
  2. cls
  3. echo This is an example of using a batch file (.BAT) to start 
  4. echo Create A Quiz (QUIZ.EXE) and instruct the program to run
  5. echo with an existing quiz file (MATH.QZ).
  6. echo.
  7. echo Once Create A Quiz is loaded into memory,  the user will
  8. echo be prompted to enter his/her name, then the quiz MATH.QZ
  9. echo will be run.
  10. echo.
  11. echo The command line instruction is: QUIZ MATH.QZ [ENTER]
  12. echo.
  13. echo Teachers: This batch file method is one way you can have
  14. echo your students take one of your quizzes.   See other .BAT
  15. echo files on this disk for additional options.
  16. echo.
  17. pause
  18. QUIZ MATH.QZ
  19.